/* C.Strupper: map an entire string to upper case */

#include <ctype.h>
#include "utils.h"

char *strupper (char *str)
{
        register char *temp;

        temp = str;

        while ( *temp )
        {
                *temp = toupper(*temp);
                ++temp;
        }

        return str;
}
